.blok_form {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 70px auto;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.blok_form .header_id {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.blok_form .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #333;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  background: #fff;

  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form .gender-box {
  margin-top: 20px;
}
.gender-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  width: 100%;
  flex-wrap: wrap;
}
.form .gender {
  column-gap: 5px;
}
.gender input {
  accent-color: #16207701;
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}

.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  padding: 15px;
  outline: none;
  border: none;
background-color: #fff;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgb(130, 106, 251);
}
.form button:hover {
  background: rgb(88, 56, 250);
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}
/* tebel start*/
.table-box
{
display: block;
overflow-y: scroll;
max-height: 500px;
  margin: 50px auto;
}

.table-row{
  display: table;
  max-width: 1200px;
  width: 100%;
  margin: 10px auto;
  font-family: sans-serif;
  background: transparent;
  padding: 12px 0;
  color: #555;
  font-size: 13px;
  box-shadow: 0 1px 4px 0px rgba(0,0,50,0.3);
}
.table-head{
  background: #8665f7;
  box-shadow: none;
  color: #fff;
  font-weight: 600;
}
.table-head .table-cell{
  border-right: none;
}
.table-cell{
  display: table-cell;
  width: 20%;
  /* font-size: 12px; */
  text-align: center;
  padding: 4px 0;
  border-right: 1px solid #d6d4d4;
  vertical-align: middle;
}
.first-cell{
  text-align: left;
  padding-left: 10px;
}
.last-cell{
  border-right: none;
}
.table-row a{
  text-decoration: none;
  color: #555;
}

@media only screen and (max-width: 600px) {
.table-row {
  font-size: 12px;
}
}
/* tabel end */


.card__block{
  display: flex;

 align-items: center;
 margin: auto;
 justify-content: center;
  max-width: 1200px;
  width: 100%;

  background: #fff;
  /* padding: 25px; */
  border-radius: 8px;

}
.card__block__item h1{
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 15px;

  
}
.card__block__item p{
  font-size: 15px;
  
}
.modal__id {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }

        .modal-content__id {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
        }

        .close__id {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close__id:hover,
        .close__Id:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }